home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 3K8WS4 (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  676 b   |  10 lines

  1. package sun.beans.editors;
  2.  
  3. import java.beans.PropertyEditorSupport;
  4.  
  5. public class IntEditor extends NumberEditor {
  6.    public void setAsText(String text) throws IllegalArgumentException {
  7.       ((PropertyEditorSupport)this).setValue(Integer.valueOf(text));
  8.    }
  9. }
  10.